home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gui / DesignerV1_53.lha / Designer / MultipleDemo / Defs.h next >
C/C++ Source or Header  |  1995-04-28  |  220b  |  10 lines

  1. struct WindowNode
  2. {
  3.   struct WindowNode *ln_Succ;
  4.   struct WindowNode *ln_Pred;
  5.   struct Window *Win;
  6.   struct Gadget *WinGList;
  7.   struct Gadget *WinGadgets[10];
  8.   void * WinVisualInfo;
  9.   struct DrawInfo *WinDrawInfo;
  10. };